home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’97 / Warrior’s Progress / source code / Source / Libraries / Screen Parts / ScreenPart.h < prev    next >
Encoding:
Text File  |  1997-06-28  |  214 b   |  16 lines  |  [TEXT/CWIE]

  1. // ScreenPart.h
  2.  
  3. #ifndef ScreenPart_h
  4. #define ScreenPart_h
  5.  
  6. class MouseDownEvent;
  7.  
  8. class ScreenPart
  9.   {
  10.     public:
  11.         virtual bool Active() const;
  12.         virtual void Click( const MouseDownEvent& ) const = 0;
  13.   };
  14.  
  15. #endif
  16.